home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / pcplus2.zip / DELPHI.ASP < prev    next >
Text File  |  1988-01-01  |  905b  |  34 lines

  1. ;*************************************************************************
  2. ;* DELPHI.ASP  (C) 1987 DATASTORM TECHNOLOGIES, INC.                     *
  3. ;*                                                                       *
  4. ;* A sample ASPECT script file for logging onto DELPHI via Tymnet        *
  5. ;*                                                                       *
  6. ;*************************************************************************
  7.           .
  8. CLEAR
  9. LOCATE 0 0
  10. BOX 0 0 4 25 14
  11. ATSAY 2 2 14 "Logging onto DELPHI..."
  12. LOCATE 6 0
  13.  
  14. IF NOT LINKED
  15.    DIAL "5"                  ;set to your dial dir entry for Tymnet
  16. ENDIF
  17.  
  18. PAUSE 1
  19. TRANSMIT "A"
  20. WAITFOR "please log in:"
  21. PAUSE 1
  22. TRANSMIT "DELPHI^M"
  23.  
  24. WAITFOR "Username:"
  25. PAUSE 1
  26. TRANSMIT "YOUR_NAME^M"
  27.  
  28. WAITFOR "Password:"
  29. PAUSE 1
  30. SEND "YOUR_PASSWORD^M"
  31.  
  32. ALARM 2                      ;inform user logon complete
  33.  
  34.